<clppastetext> : Paste Text
Pastes (inserts) text to destination application (document) through clipboard.
Syntax:
<clppastetext>("Text")
Text
Text (variable) to be pasted to destination application (document).
Example:
<#> This macro pastes "Hello!" into the Notepad
<#>
<cmds>
<if_win>("Notepad","OPEN",0)
<actwin>("Notepad",0,0,"no")
<clppastetext>("Hello!")
<else>
<msg>(100,100,"'Notepad' is not opened!","Message",1)
<endif>